Skip to content

Instantly share code, notes, and snippets.

@iannuttall
iannuttall / agentos-blueprint.md
Created August 14, 2026 12:10
AgentOS blueprint — reconstructed from Danny Postma's Agent SDK talk so an agent can build the system

AgentOS — Product Spec & Implementation Blueprint

Reconstructed from Danny Postma's talk How I Built My Own AgentOS on Claude's Agent SDK (So You Can Too) (2026). This document is both a product spec for a human and an implementation prompt for an AI coding agent. Build exactly this system. Do not invent features that are not specified here.

Role contracts and prompts in this file are reconstructed from the talk, not his verbatim files. Mark every reconstructed prompt in code comments and docs as such.


1. Goal and non-goals

@almahmudbd
almahmudbd / free-ai-api.md
Last active August 15, 2026 10:44
Free Ai Api keys and credits for agentic coding.

Free AI API Keys for Agentic Coding

Usage Tips

  • Do not subscribe to every service at once. Most free credits expire quickly. Test them one by one and move to the next when your current credits run out.
  • Register, verify your account, and claim your credits. Follow each platform’s documentation to connect your coding tools.
  • Keep your API keys private. Do not share them publicly. (save or star this gist for future update)

List-1: Top Sites in This Genre

@adityaruplaha
adityaruplaha / isi-placement-archive.md
Last active August 15, 2026 10:43
ISI Placement Archive (2026-02-26)
@Fishhrrr
Fishhrrr / .markdown
Created August 15, 2026 10:42
生日
@Nsarkar-XLR8
Nsarkar-XLR8 / Deploy_README.md
Created August 15, 2026 10:41
CI/CD Pipeline

deploy.sh — Zero-Downtime NestJS/Node.js Deployment Script

A small, dependency-free redeploy script for Node.js/NestJS apps running under PM2 on a VPS. Pulls the latest code, installs deps, builds, and reloads the app without dropping in-flight requests.

What it does, step by step

  1. Checks the deploy directory for uncommitted local changes and aborts if found — prevents accidentally overwriting a manual hotfix someone made directly on the server.
  2. Fetches and checks out the target branch (main by default).
  3. Runs npm ci (not npm install) — installs exactly what's in package-lock.json, no surprise version bumps in production.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

/*
* Copyright 2026 Kyriakos Georgiopoulos
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software

Deploying NestJS / Node.js Apps on a VPS — The Industry-Level Guide

Two real deployment paths are covered here, side by side:

  • Path A — Docker (recommended for production, what most teams actually run)
  • Path B — Bare-metal clone + PM2 (fine for solo VPS, small projects, or when you can't run Docker)

Pick one. Don't mix them on the same server unless you know why.


name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@likudo
likudo / ocean-toolkit-urp-port-guide.md
Last active August 15, 2026 10:24
Upgrading Ocean Toolkit for Unity URP
zzz

🌊 Ocean Toolkit URP Port (Diff Guide)

📌 Introduction

Ocean Toolkit, which was distributed for free during the 3rd week of May 2026, is an ocean rendering asset with excellent visual quality.
However, because the asset was originally released quite a long time ago, it only supports the Built-in Render Pipeline.